home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / f2c / may_5_92.lha / f2c.VMay_5_1992 / libF77 / l_le.c < prev    next >
C/C++ Source or Header  |  1992-05-07  |  130b  |  11 lines

  1. #include "f2c.h"
  2.  
  3. extern integer s_cmp();
  4.  
  5. logical l_le(a,b,la,lb)
  6. char *a, *b;
  7. ftnlen la, lb;
  8. {
  9. return(s_cmp(a,b,la,lb) <= 0);
  10. }
  11.